home *** CD-ROM | disk | FTP | other *** search
/ Palm Utilities / Palm_Utilities_CD-ROM_2001_2001.iso / files / utils misc / Boxer 0.18 / Boxer018.exe / boxer / LinBoxer / Makefile < prev    next >
Encoding:
Makefile  |  2000-06-29  |  117 b   |  11 lines

  1. all: box unbox
  2.  
  3. box: box.c
  4.     gcc -O3 -Wall $^ -o $@
  5.  
  6. unbox: unbox.c
  7.     gcc -O3 -Wall $^ -o $@
  8.  
  9. clean :
  10.     rm -f box unbox
  11.